From: Jim Blandy Date: Thu, 10 Jun 1993 06:21:19 +0000 (+0000) Subject: * sysdep.c: Remove clause for DGUX support of FASYNC; add clause X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1^2~5^2~95456 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=411c533fd2a59860c0d04b36a6c309d7c0342b34;p=emacs.git * sysdep.c: Remove clause for DGUX support of FASYNC; add clause to #undef FASYNC if BROKEN_FASYNC is #defined. --- diff --git a/src/sysdep.c b/src/sysdep.c index b7aa5d4bf0e..49744430560 100644 --- a/src/sysdep.c +++ b/src/sysdep.c @@ -104,10 +104,14 @@ extern char *sys_errlist[]; #endif #endif /* not 4.1 bsd */ -/* Get DGUX definition for FASYNC - DJB */ -#ifdef DGUX -#include -#endif /* DGUX */ +#ifdef BROKEN_FASYNC +/* On some systems (DGUX comes to mind real fast) FASYNC causes + background writes to the terminal to stop all processes in the + process group when invoked under the csh (and probably any shell + with job control). This stops Emacs dead in its tracks when coming + up under X11. */ +#undef FASYNC +#endif #include #include "systty.h"